html {
	height: 100%;
	box-sizing: border-box;
}

body {
	position: relative;
	margin: 0;
	padding: 0;
	min-height: 100%;
	box-sizing: inherit;
	font-family: 'Roboto', sans-serif;
}

.menu {
	background: linear-gradient(to bottom, #eee 65%, #fff 100%);
}

.menu a,
span {
	font-size: 20pt;
}

.wrapper {
	padding-bottom: 75px;
}

.footer {
	background-color: #681313;
	color: white;
	padding: 15px;
	border-radius: 2px;
}

.nav-link {
	color: black;
	font-size: 15pt;
}

.about {
	background-color: #f2efef;
	text-align: center;
	border-radius: 2px;
	padding: 5px;
}

.nav-link:hover {
	color: #681313;
}

.hdr-btn {
	background-color: #681313;
	color: white;
	font-size: 15pt;
}

.hdr-btn:hover {
	color: white;
}

.header-intro {
	background: linear-gradient(to right, #cfd1d1 15%, #f7f3f5 100%);
}

.header-text {
	color: white;
}

main {
	height: 100%;
	width: 100%;
	position: relative;
}

.hero {
	min-height: 45vh;
	background-image: url('../images/HeroImagingRoom.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.hero-text {
	padding-top: 30px;
}


.centered {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	opacity: 0.9;
	padding: 10px;
	background: linear-gradient(to bottom, #cfd1d1 15%, #f7f3f5 100%);
	border-radius: 10px;
}

.centered a:hover {
	color: #c42323;
}

.header-img {
	height: 500px;
	width: 100%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 2px 2px 5px #333;
}

.main-products {
	border: 1px solid #fff;
	border-radius: 5px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.hdr-image-btn {
	color: white;
	background-color: #681313;
	font-size: 15pt;
	margin: 10px;
}

.header-box {
	position: relative;
	text-align: center;
	color: #681313;
	margin-bottom: 25px;

}



@media (min-width: 768px) {
	.bd-placeholder-img-lg {
		font-size: 3.5rem;
	}

	.hero-text {
		font-size: 3.5rem;
	}
}

.contact-wrapper {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.contact-info {
	background: linear-gradient(135deg, #0062cc, #0096ff);
	padding: 40px;
	color: white;
}

.contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
	transition: all 0.3s ease;
}

.contact-item:hover {
	transform: translateX(10px);
}

.contact-icon {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.social-links {
	margin-top: 30px;
}

.social-icon {
	width: 35px;
	height: 35px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	transition: all 0.3s ease;
}

.social-icon:hover {
	background: white;
	color: #0062cc;
	transform: translateY(-3px);
}

.contact-form {
	padding: 40px;
}

.form-control {
	border-radius: 10px;
	padding: 12px 15px;
	border: 2px solid #eee;
	transition: all 0.3s ease;
}

.form-control:focus {
	border-color: #0062cc;
	box-shadow: none;
}

.form-label {
	font-weight: 500;
	margin-bottom: 8px;
}

.gradient {
	height: 100%;
	width: 100%;
	background: linear-gradient(to bottom, #eee 65%, #fff 100%);
	border-radius: 2px;
	padding: 15px;
}

.team {
	color: white;
	background-color: black;
	border-radius: 2px;
	padding: 15px;
}

.btn-submit {
	background: linear-gradient(135deg, #0062cc, #0096ff);
	border: none;
	padding: 12px 30px;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 98, 204, 0.3);
}

.map-container {
	height: 200px;
	border-radius: 10px;
	overflow: hidden;
	margin-top: 20px;
}